home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 59 / Cine Live 59.iso / pc / Data / Interface / boucle videos.k < prev    next >
Encoding:
Text File  |  2002-06-13  |  43.3 KB  |  1,187 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000130,$00000030,$0000024E,$00000383,$00000000,$FFFFF014,$00000000,$00000000};
  6.         LayoutWindow is {$00000391,$00000129,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; Cursor is oEmptyCursor; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     Kind is DrawOpaque; 
  14.     Elements is [
  15.         oFond2,
  16.         oVid_o3,
  17.         oController4
  18.     ];
  19.     Events is [
  20.         cOnscreenEvent
  21.         with 
  22.             Commands is [
  23.                 cTokenCommand
  24.                 with Flags is $00000004; TokenName is "StopMenu"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
  25.                 cTokenCommand
  26.                 with Flags is $00000004; TokenName is "StopMusique"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
  27.                 cDoCookieCommand
  28.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "0"; end
  29.             ];
  30.         end,
  31.         cKeyboardEvent
  32.         with Value is "+"; 
  33.             Commands is [
  34.                 cSetVolumeCommand
  35.                 with Mode is ExecuteHigher; end
  36.             ];
  37.         end,
  38.         cKeyboardEvent
  39.         with Value is "-"; 
  40.             Commands is [
  41.                 cSetVolumeCommand
  42.                 with Flags is $00000004; Mode is ExecuteLower; end
  43.             ];
  44.         end,
  45.         cKeyboardEvent
  46.         with Value is "m"; 
  47.             Commands is [
  48.                 cRunCommand
  49.                 with Flags is $00000004; Mode is Toggle; Rewind is true; end
  50.             ];
  51.         end
  52.     ];
  53. end;
  54.  
  55. object oFond2 is cImage
  56. with 
  57.     Flags is $00000150; 
  58.     Name is "Fond"; 
  59.     Enabled is false; Cursor is oEmptyCursor; 
  60.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  61.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  62.     Duration is 5; Duration is 5; TimeScale is 1; 
  63.     URL is "../Images/loadingboucle.jpg"; 
  64.     
  65.     
  66.     Events is [
  67.         cOnscreenEvent
  68.         with Flags is $00000004; 
  69.             Commands is [
  70.                 cRunCommand
  71.                 with Flags is $00000004; Target is oTargetSelf; end,
  72.                 cFocusCommand
  73.                 with Flags is $00000004; Target is oTargetSelf; end,
  74.                 cTokenCommand
  75.                 with TokenName is "stop"; Mode is ExecuteTargetUpwards; Target is oRoot1; end
  76.             ];
  77.         end,
  78.         cFinishedEvent
  79.         with Flags is $00000004; 
  80.             Commands is [
  81.                 cShowCommand
  82.                 with Flags is $00000004; Target is oController4; end,
  83.                 cEnableCommand
  84.                 with Flags is $00000004; Target is oController4; end,
  85.                 cFocusCommand
  86.                 with Flags is $00000004; Target is oController4; end,
  87.                 cTokenCommand
  88.                 with Flags is $00000004; TokenName is "EndMovie"; Mode is ExecuteTargetOnly; Target is oController4; end
  89.             ];
  90.         end
  91.     ];
  92. end;
  93.  
  94. object oVid_o3 is cMPEGMovie
  95. with 
  96.     Name is "Vid\$E9o"; 
  97.     Enabled is false; Shown is false; Cursor is oEmptyCursor; 
  98.     
  99.     AdjustWidth is GetLayoutWidth; AdjustHeight is GetLayoutHeight; 
  100.     
  101.     URL is "../Videos/vaillant.mpg"; 
  102.     Events is [
  103.         cFinishedEvent
  104.         with 
  105.             Commands is [
  106.                 cTokenCommand
  107.                 with TokenName is "EndMovie"; Mode is ExecuteTargetOnly; Target is oController4; end
  108.             ];
  109.         end
  110.     ];
  111. end;
  112.  
  113. object oController4 is cBox
  114. with 
  115.     Flags is $00000054; 
  116.     Name is "Controller"; 
  117.     Enabled is false; Shown is false; Cursor is oEmptyCursor; 
  118.     
  119.     Width is 640; Height is 480; 
  120.     
  121.     
  122.     Events is [
  123.         cKeyboardEvent
  124.         with Flags is $00000004; Test is IsSpace; 
  125.             Commands is [
  126.                 cDoCookieCommand
  127.                 with Flags is $00000004; CookieName is "CountLoop"; Mode is ExecuteAdd; Value is "1"; end,
  128.                 cIfCookieCommand
  129.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "1"; 
  130.                     Commands is [
  131.                         cShowCommand
  132.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  133.                         cRunCommand
  134.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  135.                         cEnableCommand
  136.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  137.                         cSwitchURLCommand
  138.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/vaillant.mpg"; end,
  139.                         cShowCommand
  140.                         with Flags is $00000004; Target is oVid_o3; end,
  141.                         cRunCommand
  142.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  143.                         cEnableCommand
  144.                         with Flags is $00000004; Target is oVid_o3; end
  145.                     ];
  146.                 end,
  147.                 cIfCookieCommand
  148.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "2"; 
  149.                     Commands is [
  150.                         cShowCommand
  151.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  152.                         cRunCommand
  153.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  154.                         cEnableCommand
  155.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  156.                         cSwitchURLCommand
  157.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/bonus01.mpg"; end,
  158.                         cShowCommand
  159.                         with Flags is $00000004; Target is oVid_o3; end,
  160.                         cRunCommand
  161.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  162.                         cEnableCommand
  163.                         with Flags is $00000004; Target is oVid_o3; end
  164.                     ];
  165.                 end,
  166.                 cIfCookieCommand
  167.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "3"; 
  168.                     Commands is [
  169.                         cShowCommand
  170.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  171.                         cRunCommand
  172.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  173.                         cEnableCommand
  174.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  175.                         cSwitchURLCommand
  176.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/bonus02.mpg"; end,
  177.                         cShowCommand
  178.                         with Flags is $00000004; Target is oVid_o3; end,
  179.                         cRunCommand
  180.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  181.                         cEnableCommand
  182.                         with Flags is $00000004; Target is oVid_o3; end
  183.                     ];
  184.                 end,
  185.                 cIfCookieCommand
  186.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "4"; 
  187.                     Commands is [
  188.                         cShowCommand
  189.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  190.                         cRunCommand
  191.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  192.                         cEnableCommand
  193.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  194.                         cSwitchURLCommand
  195.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/bonus2.mpg"; end,
  196.                         cShowCommand
  197.                         with Flags is $00000004; Target is oVid_o3; end,
  198.                         cRunCommand
  199.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  200.                         cEnableCommand
  201.                         with Flags is $00000004; Target is oVid_o3; end
  202.                     ];
  203.                 end,
  204.                 cIfCookieCommand
  205.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "5"; 
  206.                     Commands is [
  207.                         cShowCommand
  208.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  209.                         cRunCommand
  210.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  211.                         cEnableCommand
  212.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  213.                         cSwitchURLCommand
  214.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a1.mpg"; end,
  215.                         cShowCommand
  216.                         with Flags is $00000004; Target is oVid_o3; end,
  217.                         cRunCommand
  218.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  219.                         cEnableCommand
  220.                         with Flags is $00000004; Target is oVid_o3; end
  221.                     ];
  222.                 end,
  223.                 cIfCookieCommand
  224.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "6"; 
  225.                     Commands is [
  226.                         cShowCommand
  227.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  228.                         cRunCommand
  229.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  230.                         cEnableCommand
  231.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  232.                         cSwitchURLCommand
  233.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a2.mpg"; end,
  234.                         cShowCommand
  235.                         with Flags is $00000004; Target is oVid_o3; end,
  236.                         cRunCommand
  237.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  238.                         cEnableCommand
  239.                         with Flags is $00000004; Target is oVid_o3; end
  240.                     ];
  241.                 end,
  242.                 cIfCookieCommand
  243.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "7"; 
  244.                     Commands is [
  245.                         cShowCommand
  246.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  247.                         cRunCommand
  248.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  249.                         cEnableCommand
  250.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  251.                         cSwitchURLCommand
  252.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a3.mpg"; end,
  253.                         cShowCommand
  254.                         with Flags is $00000004; Target is oVid_o3; end,
  255.                         cRunCommand
  256.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  257.                         cEnableCommand
  258.                         with Flags is $00000004; Target is oVid_o3; end
  259.                     ];
  260.                 end,
  261.                 cIfCookieCommand
  262.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "8"; 
  263.                     Commands is [
  264.                         cShowCommand
  265.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  266.                         cRunCommand
  267.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  268.                         cEnableCommand
  269.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  270.                         cSwitchURLCommand
  271.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a4.mpg"; end,
  272.                         cShowCommand
  273.                         with Flags is $00000004; Target is oVid_o3; end,
  274.                         cRunCommand
  275.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  276.                         cEnableCommand
  277.                         with Flags is $00000004; Target is oVid_o3; end
  278.                     ];
  279.                 end,
  280.                 cIfCookieCommand
  281.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "9"; 
  282.                     Commands is [
  283.                         cShowCommand
  284.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  285.                         cRunCommand
  286.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  287.                         cEnableCommand
  288.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  289.                         cSwitchURLCommand
  290.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a5.mpg"; end,
  291.                         cShowCommand
  292.                         with Flags is $00000004; Target is oVid_o3; end,
  293.                         cRunCommand
  294.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  295.                         cEnableCommand
  296.                         with Flags is $00000004; Target is oVid_o3; end
  297.                     ];
  298.                 end,
  299.                 cIfCookieCommand
  300.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "10"; 
  301.                     Commands is [
  302.                         cShowCommand
  303.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  304.                         cRunCommand
  305.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  306.                         cEnableCommand
  307.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  308.                         cSwitchURLCommand
  309.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s1.mpg"; end,
  310.                         cShowCommand
  311.                         with Flags is $00000004; Target is oVid_o3; end,
  312.                         cRunCommand
  313.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  314.                         cEnableCommand
  315.                         with Flags is $00000004; Target is oVid_o3; end
  316.                     ];
  317.                 end,
  318.                 cIfCookieCommand
  319.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "11"; 
  320.                     Commands is [
  321.                         cShowCommand
  322.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  323.                         cRunCommand
  324.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  325.                         cEnableCommand
  326.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  327.                         cSwitchURLCommand
  328.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s10.mpg"; end,
  329.                         cShowCommand
  330.                         with Flags is $00000004; Target is oVid_o3; end,
  331.                         cRunCommand
  332.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  333.                         cEnableCommand
  334.                         with Flags is $00000004; Target is oVid_o3; end
  335.                     ];
  336.                 end,
  337.                 cIfCookieCommand
  338.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "12"; 
  339.                     Commands is [
  340.                         cShowCommand
  341.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  342.                         cRunCommand
  343.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  344.                         cEnableCommand
  345.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  346.                         cSwitchURLCommand
  347.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s11.mpg"; end,
  348.                         cShowCommand
  349.                         with Flags is $00000004; Target is oVid_o3; end,
  350.                         cRunCommand
  351.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  352.                         cEnableCommand
  353.                         with Flags is $00000004; Target is oVid_o3; end
  354.                     ];
  355.                 end,
  356.                 cIfCookieCommand
  357.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "13"; 
  358.                     Commands is [
  359.                         cShowCommand
  360.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  361.                         cRunCommand
  362.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  363.                         cEnableCommand
  364.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  365.                         cSwitchURLCommand
  366.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s12.mpg"; end,
  367.                         cShowCommand
  368.                         with Flags is $00000004; Target is oVid_o3; end,
  369.                         cRunCommand
  370.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  371.                         cEnableCommand
  372.                         with Flags is $00000004; Target is oVid_o3; end
  373.                     ];
  374.                 end,
  375.                 cIfCookieCommand
  376.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "14"; 
  377.                     Commands is [
  378.                         cShowCommand
  379.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  380.                         cRunCommand
  381.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  382.                         cEnableCommand
  383.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  384.                         cSwitchURLCommand
  385.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s2.mpg"; end,
  386.                         cShowCommand
  387.                         with Flags is $00000004; Target is oVid_o3; end,
  388.                         cRunCommand
  389.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  390.                         cEnableCommand
  391.                         with Flags is $00000004; Target is oVid_o3; end
  392.                     ];
  393.                 end,
  394.                 cIfCookieCommand
  395.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "15"; 
  396.                     Commands is [
  397.                         cShowCommand
  398.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  399.                         cRunCommand
  400.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  401.                         cEnableCommand
  402.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  403.                         cSwitchURLCommand
  404.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s3.mpg"; end,
  405.                         cShowCommand
  406.                         with Flags is $00000004; Target is oVid_o3; end,
  407.                         cRunCommand
  408.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  409.                         cEnableCommand
  410.                         with Flags is $00000004; Target is oVid_o3; end
  411.                     ];
  412.                 end,
  413.                 cIfCookieCommand
  414.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "16"; 
  415.                     Commands is [
  416.                         cShowCommand
  417.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  418.                         cRunCommand
  419.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  420.                         cEnableCommand
  421.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  422.                         cSwitchURLCommand
  423.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s4.mpg"; end,
  424.                         cShowCommand
  425.                         with Flags is $00000004; Target is oVid_o3; end,
  426.                         cRunCommand
  427.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  428.                         cEnableCommand
  429.                         with Flags is $00000004; Target is oVid_o3; end
  430.                     ];
  431.                 end,
  432.                 cIfCookieCommand
  433.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "17"; 
  434.                     Commands is [
  435.                         cShowCommand
  436.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  437.                         cRunCommand
  438.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  439.                         cEnableCommand
  440.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  441.                         cSwitchURLCommand
  442.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s5.mpg"; end,
  443.                         cShowCommand
  444.                         with Flags is $00000004; Target is oVid_o3; end,
  445.                         cRunCommand
  446.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  447.                         cEnableCommand
  448.                         with Flags is $00000004; Target is oVid_o3; end
  449.                     ];
  450.                 end,
  451.                 cIfCookieCommand
  452.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "18"; 
  453.                     Commands is [
  454.                         cShowCommand
  455.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  456.                         cRunCommand
  457.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  458.                         cEnableCommand
  459.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  460.                         cSwitchURLCommand
  461.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s6.mpg"; end,
  462.                         cShowCommand
  463.                         with Flags is $00000004; Target is oVid_o3; end,
  464.                         cRunCommand
  465.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  466.                         cEnableCommand
  467.                         with Flags is $00000004; Target is oVid_o3; end
  468.                     ];
  469.                 end,
  470.                 cIfCookieCommand
  471.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "19"; 
  472.                     Commands is [
  473.                         cEnableCommand
  474.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  475.                         cShowCommand
  476.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  477.                         cRunCommand
  478.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  479.                         cSwitchURLCommand
  480.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s7.mpg"; end,
  481.                         cEnableCommand
  482.                         with Flags is $00000004; Target is oVid_o3; end,
  483.                         cShowCommand
  484.                         with Flags is $00000004; Target is oVid_o3; end,
  485.                         cRunCommand
  486.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end
  487.                     ];
  488.                 end,
  489.                 cIfCookieCommand
  490.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "20"; 
  491.                     Commands is [
  492.                         cShowCommand
  493.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  494.                         cRunCommand
  495.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  496.                         cEnableCommand
  497.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  498.                         cSwitchURLCommand
  499.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s8.mpg"; end,
  500.                         cShowCommand
  501.                         with Flags is $00000004; Target is oVid_o3; end,
  502.                         cRunCommand
  503.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  504.                         cEnableCommand
  505.                         with Flags is $00000004; Target is oVid_o3; end
  506.                     ];
  507.                 end,
  508.                 cIfCookieCommand
  509.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "21"; 
  510.                     Commands is [
  511.                         cShowCommand
  512.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  513.                         cRunCommand
  514.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  515.                         cEnableCommand
  516.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  517.                         cSwitchURLCommand
  518.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s9.mpg"; end,
  519.                         cShowCommand
  520.                         with Flags is $00000004; Target is oVid_o3; end,
  521.                         cRunCommand
  522.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  523.                         cEnableCommand
  524.                         with Flags is $00000004; Target is oVid_o3; end
  525.                     ];
  526.                 end,
  527.                 cIfCookieCommand
  528.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "22"; 
  529.                     Commands is [
  530.                         cShowCommand
  531.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  532.                         cRunCommand
  533.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  534.                         cEnableCommand
  535.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  536.                         cSwitchURLCommand
  537.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/r1.mpg"; end,
  538.                         cShowCommand
  539.                         with Flags is $00000004; Target is oVid_o3; end,
  540.                         cRunCommand
  541.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  542.                         cEnableCommand
  543.                         with Flags is $00000004; Target is oVid_o3; end
  544.                     ];
  545.                 end,
  546.                 cIfCookieCommand
  547.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "23"; 
  548.                     Commands is [
  549.                         cShowCommand
  550.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  551.                         cRunCommand
  552.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  553.                         cEnableCommand
  554.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  555.                         cSwitchURLCommand
  556.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/r2.mpg"; end,
  557.                         cShowCommand
  558.                         with Flags is $00000004; Target is oVid_o3; end,
  559.                         cRunCommand
  560.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  561.                         cEnableCommand
  562.                         with Flags is $00000004; Target is oVid_o3; end
  563.                     ];
  564.                 end,
  565.                 cIfCookieCommand
  566.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "24"; 
  567.                     Commands is [
  568.                         cShowCommand
  569.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  570.                         cRunCommand
  571.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  572.                         cEnableCommand
  573.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  574.                         cSwitchURLCommand
  575.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/r3.mpg"; end,
  576.                         cShowCommand
  577.                         with Flags is $00000004; Target is oVid_o3; end,
  578.                         cRunCommand
  579.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  580.                         cEnableCommand
  581.                         with Flags is $00000004; Target is oVid_o3; end
  582.                     ];
  583.                 end,
  584.                 cIfCookieCommand
  585.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "25"; 
  586.                     Commands is [
  587.                         cShowCommand
  588.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  589.                         cRunCommand
  590.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  591.                         cEnableCommand
  592.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  593.                         cSwitchURLCommand
  594.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/r4.mpg"; end,
  595.                         cShowCommand
  596.                         with Flags is $00000004; Target is oVid_o3; end,
  597.                         cRunCommand
  598.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  599.                         cEnableCommand
  600.                         with Flags is $00000004; Target is oVid_o3; end
  601.                     ];
  602.                 end,
  603.                 cIfCookieCommand
  604.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "26"; 
  605.                     Commands is [
  606.                         cShowCommand
  607.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  608.                         cRunCommand
  609.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  610.                         cEnableCommand
  611.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  612.                         cSwitchURLCommand
  613.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/v1.mpg"; end,
  614.                         cShowCommand
  615.                         with Flags is $00000004; Target is oVid_o3; end,
  616.                         cRunCommand
  617.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  618.                         cEnableCommand
  619.                         with Flags is $00000004; Target is oVid_o3; end
  620.                     ];
  621.                 end,
  622.                 cIfCookieCommand
  623.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "27"; 
  624.                     Commands is [
  625.                         cShowCommand
  626.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  627.                         cRunCommand
  628.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  629.                         cEnableCommand
  630.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  631.                         cSwitchURLCommand
  632.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/v2.mpg"; end,
  633.                         cShowCommand
  634.                         with Flags is $00000004; Target is oVid_o3; end,
  635.                         cRunCommand
  636.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  637.                         cEnableCommand
  638.                         with Flags is $00000004; Target is oVid_o3; end,
  639.                         cDoCookieCommand
  640.                         with Flags is $00000004; CookieName is "CountLoop"; Value is "0"; end
  641.                     ];
  642.                 end
  643.             ];
  644.         end,
  645.         cTokenEvent
  646.         with Flags is $00000004; MessageData is "EndMovie"; 
  647.             Commands is [
  648.                 cDoCookieCommand
  649.                 with Flags is $00000004; CookieName is "CountLoop"; Mode is ExecuteAdd; Value is "1"; end,
  650.                 cDragCommand
  651.                 with Flags is $00000004; Target is oVid_o3; Mode is DragTo; end,
  652.                 cGrowCommand
  653.                 with Flags is $00000004; Target is oVid_o3; Mode is GrowTo; X is 800; Y is 600; end,
  654.                 cIfCookieCommand
  655.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "1"; 
  656.                     Commands is [
  657.                         cShowCommand
  658.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  659.                         cRunCommand
  660.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  661.                         cEnableCommand
  662.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  663.                         cSwitchURLCommand
  664.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/vaillant.mpg"; end,
  665.                         cShowCommand
  666.                         with Flags is $00000004; Target is oVid_o3; end,
  667.                         cRunCommand
  668.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  669.                         cEnableCommand
  670.                         with Flags is $00000004; Target is oVid_o3; end
  671.                     ];
  672.                 end,
  673.                 cIfCookieCommand
  674.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "2"; 
  675.                     Commands is [
  676.                         cShowCommand
  677.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  678.                         cRunCommand
  679.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  680.                         cEnableCommand
  681.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  682.                         cSwitchURLCommand
  683.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/bonus01.mpg"; end,
  684.                         cShowCommand
  685.                         with Flags is $00000004; Target is oVid_o3; end,
  686.                         cRunCommand
  687.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  688.                         cEnableCommand
  689.                         with Flags is $00000004; Target is oVid_o3; end
  690.                     ];
  691.                 end,
  692.                 cIfCookieCommand
  693.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "3"; 
  694.                     Commands is [
  695.                         cShowCommand
  696.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  697.                         cRunCommand
  698.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  699.                         cEnableCommand
  700.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  701.                         cSwitchURLCommand
  702.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/bonus02.mpg"; end,
  703.                         cShowCommand
  704.                         with Flags is $00000004; Target is oVid_o3; end,
  705.                         cRunCommand
  706.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  707.                         cEnableCommand
  708.                         with Flags is $00000004; Target is oVid_o3; end
  709.                     ];
  710.                 end,
  711.                 cIfCookieCommand
  712.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "4"; 
  713.                     Commands is [
  714.                         cShowCommand
  715.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  716.                         cRunCommand
  717.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  718.                         cEnableCommand
  719.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  720.                         cSwitchURLCommand
  721.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/bonus2.mpg"; end,
  722.                         cShowCommand
  723.                         with Flags is $00000004; Target is oVid_o3; end,
  724.                         cRunCommand
  725.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  726.                         cEnableCommand
  727.                         with Flags is $00000004; Target is oVid_o3; end
  728.                     ];
  729.                 end,
  730.                 cIfCookieCommand
  731.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "5"; 
  732.                     Commands is [
  733.                         cShowCommand
  734.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  735.                         cRunCommand
  736.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  737.                         cEnableCommand
  738.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  739.                         cSwitchURLCommand
  740.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a1.mpg"; end,
  741.                         cShowCommand
  742.                         with Flags is $00000004; Target is oVid_o3; end,
  743.                         cRunCommand
  744.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  745.                         cEnableCommand
  746.                         with Flags is $00000004; Target is oVid_o3; end
  747.                     ];
  748.                 end,
  749.                 cIfCookieCommand
  750.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "6"; 
  751.                     Commands is [
  752.                         cShowCommand
  753.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  754.                         cRunCommand
  755.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  756.                         cEnableCommand
  757.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  758.                         cSwitchURLCommand
  759.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a2.mpg"; end,
  760.                         cShowCommand
  761.                         with Flags is $00000004; Target is oVid_o3; end,
  762.                         cRunCommand
  763.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  764.                         cEnableCommand
  765.                         with Flags is $00000004; Target is oVid_o3; end
  766.                     ];
  767.                 end,
  768.                 cIfCookieCommand
  769.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "7"; 
  770.                     Commands is [
  771.                         cShowCommand
  772.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  773.                         cRunCommand
  774.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  775.                         cEnableCommand
  776.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  777.                         cSwitchURLCommand
  778.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a3.mpg"; end,
  779.                         cShowCommand
  780.                         with Flags is $00000004; Target is oVid_o3; end,
  781.                         cRunCommand
  782.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  783.                         cEnableCommand
  784.                         with Flags is $00000004; Target is oVid_o3; end
  785.                     ];
  786.                 end,
  787.                 cIfCookieCommand
  788.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "8"; 
  789.                     Commands is [
  790.                         cShowCommand
  791.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  792.                         cRunCommand
  793.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  794.                         cEnableCommand
  795.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  796.                         cSwitchURLCommand
  797.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a4.mpg"; end,
  798.                         cShowCommand
  799.                         with Flags is $00000004; Target is oVid_o3; end,
  800.                         cRunCommand
  801.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  802.                         cEnableCommand
  803.                         with Flags is $00000004; Target is oVid_o3; end
  804.                     ];
  805.                 end,
  806.                 cIfCookieCommand
  807.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "9"; 
  808.                     Commands is [
  809.                         cShowCommand
  810.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  811.                         cRunCommand
  812.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  813.                         cEnableCommand
  814.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  815.                         cSwitchURLCommand
  816.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a5.mpg"; end,
  817.                         cShowCommand
  818.                         with Flags is $00000004; Target is oVid_o3; end,
  819.                         cRunCommand
  820.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  821.                         cEnableCommand
  822.                         with Flags is $00000004; Target is oVid_o3; end
  823.                     ];
  824.                 end,
  825.                 cIfCookieCommand
  826.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "10"; 
  827.                     Commands is [
  828.                         cShowCommand
  829.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  830.                         cRunCommand
  831.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  832.                         cEnableCommand
  833.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  834.                         cSwitchURLCommand
  835.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s1.mpg"; end,
  836.                         cShowCommand
  837.                         with Flags is $00000004; Target is oVid_o3; end,
  838.                         cRunCommand
  839.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  840.                         cEnableCommand
  841.                         with Flags is $00000004; Target is oVid_o3; end
  842.                     ];
  843.                 end,
  844.                 cIfCookieCommand
  845.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "11"; 
  846.                     Commands is [
  847.                         cShowCommand
  848.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  849.                         cRunCommand
  850.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  851.                         cEnableCommand
  852.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  853.                         cSwitchURLCommand
  854.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s10.mpg"; end,
  855.                         cShowCommand
  856.                         with Flags is $00000004; Target is oVid_o3; end,
  857.                         cRunCommand
  858.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  859.                         cEnableCommand
  860.                         with Flags is $00000004; Target is oVid_o3; end
  861.                     ];
  862.                 end,
  863.                 cIfCookieCommand
  864.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "12"; 
  865.                     Commands is [
  866.                         cShowCommand
  867.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  868.                         cRunCommand
  869.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  870.                         cEnableCommand
  871.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  872.                         cSwitchURLCommand
  873.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s11.mpg"; end,
  874.                         cShowCommand
  875.                         with Flags is $00000004; Target is oVid_o3; end,
  876.                         cRunCommand
  877.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  878.                         cEnableCommand
  879.                         with Flags is $00000004; Target is oVid_o3; end
  880.                     ];
  881.                 end,
  882.                 cIfCookieCommand
  883.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "13"; 
  884.                     Commands is [
  885.                         cShowCommand
  886.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  887.                         cRunCommand
  888.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  889.                         cEnableCommand
  890.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  891.                         cSwitchURLCommand
  892.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s12.mpg"; end,
  893.                         cShowCommand
  894.                         with Flags is $00000004; Target is oVid_o3; end,
  895.                         cRunCommand
  896.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  897.                         cEnableCommand
  898.                         with Flags is $00000004; Target is oVid_o3; end
  899.                     ];
  900.                 end,
  901.                 cIfCookieCommand
  902.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "14"; 
  903.                     Commands is [
  904.                         cShowCommand
  905.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  906.                         cRunCommand
  907.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  908.                         cEnableCommand
  909.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  910.                         cSwitchURLCommand
  911.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s2.mpg"; end,
  912.                         cShowCommand
  913.                         with Flags is $00000004; Target is oVid_o3; end,
  914.                         cRunCommand
  915.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  916.                         cEnableCommand
  917.                         with Flags is $00000004; Target is oVid_o3; end
  918.                     ];
  919.                 end,
  920.                 cIfCookieCommand
  921.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "15"; 
  922.                     Commands is [
  923.                         cShowCommand
  924.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  925.                         cRunCommand
  926.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  927.                         cEnableCommand
  928.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  929.                         cSwitchURLCommand
  930.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s3.mpg"; end,
  931.                         cShowCommand
  932.                         with Flags is $00000004; Target is oVid_o3; end,
  933.                         cRunCommand
  934.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  935.                         cEnableCommand
  936.                         with Flags is $00000004; Target is oVid_o3; end
  937.                     ];
  938.                 end,
  939.                 cIfCookieCommand
  940.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "16"; 
  941.                     Commands is [
  942.                         cShowCommand
  943.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  944.                         cRunCommand
  945.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  946.                         cEnableCommand
  947.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  948.                         cSwitchURLCommand
  949.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s4.mpg"; end,
  950.                         cShowCommand
  951.                         with Flags is $00000004; Target is oVid_o3; end,
  952.                         cRunCommand
  953.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  954.                         cEnableCommand
  955.                         with Flags is $00000004; Target is oVid_o3; end
  956.                     ];
  957.                 end,
  958.                 cIfCookieCommand
  959.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "17"; 
  960.                     Commands is [
  961.                         cShowCommand
  962.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  963.                         cRunCommand
  964.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  965.                         cEnableCommand
  966.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  967.                         cSwitchURLCommand
  968.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s5.mpg"; end,
  969.                         cShowCommand
  970.                         with Flags is $00000004; Target is oVid_o3; end,
  971.                         cRunCommand
  972.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  973.                         cEnableCommand
  974.                         with Flags is $00000004; Target is oVid_o3; end
  975.                     ];
  976.                 end,
  977.                 cIfCookieCommand
  978.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "18"; 
  979.                     Commands is [
  980.                         cShowCommand
  981.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  982.                         cRunCommand
  983.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  984.                         cEnableCommand
  985.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  986.                         cSwitchURLCommand
  987.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s6.mpg"; end,
  988.                         cShowCommand
  989.                         with Flags is $00000004; Target is oVid_o3; end,
  990.                         cRunCommand
  991.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  992.                         cEnableCommand
  993.                         with Flags is $00000004; Target is oVid_o3; end
  994.                     ];
  995.                 end,
  996.                 cIfCookieCommand
  997.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "19"; 
  998.                     Commands is [
  999.                         cShowCommand
  1000.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1001.                         cRunCommand
  1002.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1003.                         cEnableCommand
  1004.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1005.                         cSwitchURLCommand
  1006.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s7.mpg"; end,
  1007.                         cShowCommand
  1008.                         with Flags is $00000004; Target is oVid_o3; end,
  1009.                         cRunCommand
  1010.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1011.                         cEnableCommand
  1012.                         with Flags is $00000004; Target is oVid_o3; end
  1013.                     ];
  1014.                 end,
  1015.                 cIfCookieCommand
  1016.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "20"; 
  1017.                     Commands is [
  1018.                         cShowCommand
  1019.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1020.                         cRunCommand
  1021.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1022.                         cEnableCommand
  1023.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1024.                         cSwitchURLCommand
  1025.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s8.mpg"; end,
  1026.                         cShowCommand
  1027.                         with Flags is $00000004; Target is oVid_o3; end,
  1028.                         cRunCommand
  1029.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1030.                         cEnableCommand
  1031.                         with Flags is $00000004; Target is oVid_o3; end
  1032.                     ];
  1033.                 end,
  1034.                 cIfCookieCommand
  1035.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "21"; 
  1036.                     Commands is [
  1037.                         cShowCommand
  1038.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1039.                         cRunCommand
  1040.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1041.                         cEnableCommand
  1042.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1043.                         cSwitchURLCommand
  1044.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/s9.mpg"; end,
  1045.                         cShowCommand
  1046.                         with Flags is $00000004; Target is oVid_o3; end,
  1047.                         cRunCommand
  1048.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1049.                         cEnableCommand
  1050.                         with Flags is $00000004; Target is oVid_o3; end
  1051.                     ];
  1052.                 end,
  1053.                 cIfCookieCommand
  1054.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "22"; 
  1055.                     Commands is [
  1056.                         cShowCommand
  1057.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1058.                         cRunCommand
  1059.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1060.                         cEnableCommand
  1061.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1062.                         cSwitchURLCommand
  1063.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/r1.mpg"; end,
  1064.                         cShowCommand
  1065.                         with Flags is $00000004; Target is oVid_o3; end,
  1066.                         cRunCommand
  1067.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1068.                         cEnableCommand
  1069.                         with Flags is $00000004; Target is oVid_o3; end
  1070.                     ];
  1071.                 end,
  1072.                 cIfCookieCommand
  1073.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "23"; 
  1074.                     Commands is [
  1075.                         cShowCommand
  1076.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1077.                         cRunCommand
  1078.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1079.                         cEnableCommand
  1080.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1081.                         cSwitchURLCommand
  1082.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/r2.mpg"; end,
  1083.                         cShowCommand
  1084.                         with Flags is $00000004; Target is oVid_o3; end,
  1085.                         cRunCommand
  1086.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1087.                         cEnableCommand
  1088.                         with Flags is $00000004; Target is oVid_o3; end
  1089.                     ];
  1090.                 end,
  1091.                 cIfCookieCommand
  1092.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "24"; 
  1093.                     Commands is [
  1094.                         cShowCommand
  1095.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1096.                         cRunCommand
  1097.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1098.                         cEnableCommand
  1099.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1100.                         cSwitchURLCommand
  1101.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/r3.mpg"; end,
  1102.                         cShowCommand
  1103.                         with Flags is $00000004; Target is oVid_o3; end,
  1104.                         cRunCommand
  1105.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1106.                         cEnableCommand
  1107.                         with Flags is $00000004; Target is oVid_o3; end
  1108.                     ];
  1109.                 end,
  1110.                 cIfCookieCommand
  1111.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "25"; 
  1112.                     Commands is [
  1113.                         cShowCommand
  1114.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1115.                         cRunCommand
  1116.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1117.                         cEnableCommand
  1118.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1119.                         cSwitchURLCommand
  1120.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/r4.mpg"; end,
  1121.                         cShowCommand
  1122.                         with Flags is $00000004; Target is oVid_o3; end,
  1123.                         cRunCommand
  1124.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1125.                         cEnableCommand
  1126.                         with Flags is $00000004; Target is oVid_o3; end
  1127.                     ];
  1128.                 end,
  1129.                 cIfCookieCommand
  1130.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "26"; 
  1131.                     Commands is [
  1132.                         cShowCommand
  1133.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1134.                         cRunCommand
  1135.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1136.                         cEnableCommand
  1137.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1138.                         cSwitchURLCommand
  1139.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/v1.mpg"; end,
  1140.                         cShowCommand
  1141.                         with Flags is $00000004; Target is oVid_o3; end,
  1142.                         cRunCommand
  1143.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1144.                         cEnableCommand
  1145.                         with Flags is $00000004; Target is oVid_o3; end
  1146.                     ];
  1147.                 end,
  1148.                 cIfCookieCommand
  1149.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "27"; 
  1150.                     Commands is [
  1151.                         cShowCommand
  1152.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1153.                         cRunCommand
  1154.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1155.                         cEnableCommand
  1156.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1157.                         cSwitchURLCommand
  1158.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/v2.mpg"; end,
  1159.                         cShowCommand
  1160.                         with Flags is $00000004; Target is oVid_o3; end,
  1161.                         cRunCommand
  1162.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  1163.                         cEnableCommand
  1164.                         with Flags is $00000004; Target is oVid_o3; end,
  1165.                         cDoCookieCommand
  1166.                         with Flags is $00000004; CookieName is "CountLoop"; Value is "0"; end
  1167.                     ];
  1168.                 end
  1169.             ];
  1170.         end,
  1171.         cMouseUpEvent
  1172.         with Flags is $00000004; Flag is true; 
  1173.             Commands is [
  1174.                 cEnableCommand
  1175.                 with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1176.                 cShowCommand
  1177.                 with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1178.                 cRunCommand
  1179.                 with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  1180.                 cTokenCommand
  1181.                 with Flags is $00000004; TokenName is "run"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
  1182.                 cBrowseCommand
  1183.                 with Flags is $00000004; URL is "sommaire.k"; end
  1184.             ];
  1185.         end
  1186.     ];
  1187. end;